/* Styles for the Devise pages */

/* Increase data-entry font sizes globally for inputs using .input class */
.input {
    font-size: 1.15rem;
    line-height: 1.35;
}

.auth-page {
    display: grid;
    place-items: center;
    padding: 2rem 0 3rem;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(2,6,23,0.06);
    backdrop-filter: blur(0);
}
.auth-header {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1rem;
    text-align: center;
}
.auth-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0px;
}
.auth-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}
.form-field {
    display: grid;
    gap: .25rem; /* match Work Experience form */
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.4rem;
    gap: .5rem;
    flex-wrap: wrap;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    user-select: none;
}
.links {
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.92rem;
    margin-top: .9rem;
}
.links a {
    color: #2563eb;
    text-decoration: none;
}
.links a:hover { text-decoration: underline; }
